body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
}

.mainArea {
    max-height: 100vh;
    width: 100%;
    padding-inline: 20px;
    overflow-y: auto;
}
.mainArea::-webkit-scrollbar{
    width: 0;
}

.name-date{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name-date h1{
    font-weight: 400;
}

.progress{
    height: 200px;
    width: 100%;
    border: 1px solid var(--border-color);
    margin: auto;
    margin-top: 20px;
    padding-inline: 20px;
    position: relative;
}

.HomeTasks{
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    align-items: center;
}

.HomeTasks .card{
    height: 280px;
    width: 249px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.progressbar{
    height: 15px;
    border: 1px solid var(--border-color);
}

.perc-progressBar h3{
    color: var(--button-color);
}

.progress h1{
    position: absolute;
    top: 10px;
}

.card span{
    font-size: 4rem;
    font-weight: 500;
}

.card .total{
    font-size: 20px;
    font-weight: 500;
}

.total img{
    height: 25px;
}

.userLoginPopUpBack{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.userLoginPopUp{
    height: 200px;
    width: 400px;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.none{
    display: none;
}

.userLoginPopUp input{
    background: rgb(207 207 255 / 34%);
    border: 1px solid rgba(0, 0, 0, 0.404);
    outline: none;
    border-radius: 5px;
    cursor: text;
    padding: 5px 20px;
}

.userLoginPopUp button{
    background-color: var(--button-color);
    border: none;
    color: white;
    font-size: 18px;
    padding: 3px 10px;
    border-radius: 5px;
}

.UserNameError{
    color: red;
    font-size: 12px;
}